home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1992 June: ROMin Holiday / ADC Developer CD (1992-06) (''ROMin Holiday'')_iso / Developer Connection - 06-1992.iso / Development Platforms / Apple II / Apple II Sample Code / MPW IIGS SC / SC.002.BusyBox / busybox.p / MakeFile < prev    next >
Encoding:
Makefile  |  1989-09-20  |  1.2 KB  |  60 lines  |  [TEXT/MPS ]

  1. SrcDir  = :
  2. ObjDir  = :objs:
  3. App        = "busybox"
  4.  
  5. Sources =                         ∂
  6.         {SrcDir}uglobals.p        ∂
  7.         {SrcDir}uwindow.p        ∂
  8.         {SrcDir}umenu.p            ∂
  9.         {SrcDir}uevent.p        ∂
  10.         {SrcDir}busy.p
  11.  
  12.  
  13. Objects =                         ∂
  14.         {ObjDir}uglobals.p.obj    ∂
  15.         {ObjDir}uwindow.p.obj    ∂
  16.         {ObjDir}umenu.p.obj        ∂
  17.         {ObjDir}uevent.p.obj    ∂
  18.         {ObjDir}busy.p.obj
  19.  
  20.  
  21. {App} ƒ        {ObjDir}{App}.load {ObjDir}{App}.res
  22.     duplicate -y -d {ObjDir}{App}.load p.{App}
  23.     duplicate -y -r {ObjDir}{App}.res  p.{App}
  24.     duplicateiigs -y -mac p.{App} :
  25.  
  26. {ObjDIR}{App}.res        ƒ                ∂
  27.                             busybox.r    ∂
  28.                             uevent.p    ∂
  29.                             umenu.p        ∂
  30.                             uwindow.p    ∂
  31.                             uglobals.p    ∂
  32.                             busy.p
  33.     reziigs busybox.r -o {ObjDir}busybox.res
  34.  
  35. {ObjDir}busybox.load        ƒ    {Objects}
  36.     LinkIIGS ∂
  37.         "{PIIGSLibraries}"pstart.obj ∂
  38.         {Objects} ∂
  39.         -lib "{PIIGSLibraries}"plib ∂
  40.         -o {ObjDir}busybox.load  -t $B3
  41.  
  42. {ObjDir}busy.p.obj         ƒ                         ∂
  43.                             busy.p
  44.     pascaliigs busy.p -o {ObjDir}
  45.  
  46. {ObjDir}uevent.p.obj     ƒ                         ∂
  47.                             uevent.p
  48.     pascaliigs uevent.p -o {ObjDir}
  49.  
  50. {ObjDir}uwindow.p.obj     ƒ                        ∂
  51.                             uwindow.p
  52.     pascaliigs uwindow.p -o {ObjDir}
  53.  
  54. {ObjDir}umenu.p.obj     ƒ                        ∂
  55.                             umenu.p    
  56.     pascaliigs umenu.p -o {ObjDir}
  57.  
  58. {ObjDir}uglobals.p.obj     ƒ                        ∂
  59.                             uglobals.p    
  60.     pascaliigs uglobals.p -o {ObjDir}